home *** CD-ROM | disk | FTP | other *** search
- if(CardCount < 25)
- {
- if(CardCount < 10)
- {
- CardTarget = "_parent.Card0" add CardCount add ".CardMotion";
- }
- else
- {
- CardTarget = "_parent.Card" add CardCount add ".CardMotion";
- }
- tellTarget(CardTarget)
- {
- gotoAndStop("CardFadeIn");
- play();
- }
- CardCount++;
- }
- else
- {
- gotoAndStop("TurnCardsComplete");
- play();
- }
-